home *** CD-ROM | disk | FTP | other *** search
/ Creative Review 34 / Creative-Review-CD-ROM-34.iso / pc / jkd / folio / scripts.cst / 00031_Script_Inter Button < prev    next >
Text File  |  1998-01-26  |  448b  |  27 lines

  1. on mouseEnter
  2.   global interButton
  3.   overButton interButton
  4.   updateStage
  5. end
  6.  
  7. on mouseDown
  8.   global interButton
  9.   downButton interButton
  10.   updateStage
  11. end
  12.  
  13. on mouseUp
  14.   global interButton
  15.   overButton interButton
  16.   updateStage
  17.   global searchMenu
  18.   set the attemptChosenOption of searchMenu = (the clickOn - 60)
  19.   downOption searchMenu
  20. end
  21.  
  22. on mouseLeave
  23.   global interButton
  24.   normalButton interButton
  25.   updateStage
  26. end
  27.